home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / www / netbsd / .cshrc next >
Text File  |  1999-01-01  |  451b  |  24 lines

  1. # Simple C-Shell configuration script
  2.  
  3. #set the search path
  4.  
  5. set path = ($path . bin /usr/bin /usr/local/bin /usr/local/X11R6.1/bin /$home)
  6.  
  7. #define some aliases
  8.  
  9. alias df '/bin/df -k '
  10. alias local 'cd /local'
  11. alias windows 'startx'
  12. alias copy 'cp'
  13. alias dir 'ls'
  14. alias move 'mv'
  15. alias delete 'rm'
  16. set history=25
  17. alias h history
  18.  
  19.  
  20. #change the shell prompt
  21. set host = `/bin/hostname`
  22. set thisuser = `/usr/bin/whoami`
  23. set prompt = "$host>$thisuser>\!>"
  24.